home *** CD-ROM | disk | FTP | other *** search
/ Software of the Month Club 2000 October / Software of the Month - Ultimate Collection Shareware 277.iso / pc / PROGRAMS / UTILITY / WINLINUX / DATA1.CAB / programs_-_include / ASM-ARM / PROCINFO.H < prev    next >
C/C++ Source or Header  |  1999-09-17  |  730b  |  35 lines

  1. /*
  2.  * linux/include/asm-arm/procinfo.h
  3.  *
  4.  * Copyright (C) 1996 Russell King
  5.  */
  6.  
  7. #ifndef __ASM_PROCINFO_H
  8. #define __ASM_PROCINFO_H
  9.  
  10. #include <asm/proc-fns.h>
  11.  
  12. #ifndef __ASSEMBLER__
  13.  
  14. #define HWCAP_SWP    (1 << 0)
  15. #define HWCAP_HALF    (1 << 1)
  16.  
  17. struct armversions {
  18.     const unsigned long id;        /* Processor ID            */
  19.     const unsigned long mask;    /* Processor ID mask        */
  20.     const char *manu;        /* Manufacturer            */
  21.     const char *name;        /* Processor name        */
  22.     const char *arch_vsn;        /* Architecture version        */
  23.     const char *elf_vsn;        /* ELF library version        */
  24.     const int hwcap;        /* ELF HWCAP            */
  25.     const struct processor *proc;    /* Processor-specific ASM    */
  26. };
  27.  
  28. extern const struct armversions armidlist[];
  29. extern int armidindex;
  30.  
  31. #endif
  32.  
  33. #endif
  34.  
  35.